home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / fnos16a5.zip / HELP.ZIP / TRACE < prev    next >
Text File  |  1995-07-04  |  2KB  |  39 lines

  1.  
  2. trace [<iface> [off | <btio> [outfile]]
  3.  
  4.      Controls packet tracing by the interface drivers. Specific bits
  5. enable  tracing  of the various interfaces and the amount of
  6. information produced.  Tracing is controlled on a per-interface basis;
  7. without arguments, 'trace' gives a list of all defined interfaces and
  8. their tracing status.  Output can be limited to a single interface by
  9. specifying it, and the control flags can be changed by specifying them
  10. as well.  Trace control flags may be followed by <outfile>, a path to
  11. a disk file to contain the tracing output.
  12.  
  13.      The flags are given as a hexadecimal number which is interpreted
  14. as follows:
  15.  
  16. B    - Broadcast filter flag. If set, only packets specifically
  17.        addressed to this node will be traced; broadcast packets will
  18.        not be displayed.
  19. T    - Controls type of tracing:
  20.   0  - Protocol headers are decoded, but data is not displayed
  21.   1  - Protocol headers are decoded, and data (but not the headers
  22.        themselves) are displayed  as ASCII characters, 64 characters
  23.        per line.  Unprintable characters are displayed as periods.
  24.   2  - Protocol headers are decoded, and the entire packet (headers
  25.        AND data) is also displayed  in hexadecimal and ASCII, 16 chars
  26.        per line.
  27.   3  - A minimal display of headers and data is produced.
  28. I    - Enable tracing of input packets if 1, disable if 0
  29. O    - Enable tracing of output packets if 1, disable if 0
  30.  
  31.  
  32.           Example:
  33.           # Trace all packets on port1 and display with headers:
  34.           trace port1 0111
  35.           # Trace all lan non-broadcast received packets to a file:
  36.           trace lan 1210 d:\lan_ipt.trc
  37.  
  38.  
  39.